Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | import Backbone from 'backbone'; |
||
34 | initialize: function (options) { |
||
35 | this.columns = options.columns; |
||
36 | if (!(this.columns instanceof Backbone.Collection)) { |
||
37 | this.columns = new Columns(this.columns); |
||
38 | } |
||
39 | |||
40 | this.row = new HeaderRow({ |
||
41 | columns: this.columns, |
||
42 | collection: this.collection |
||
43 | }); |
||
44 | }, |
||
45 | |||
69 |